home *** CD-ROM | disk | FTP | other *** search
- // ===========================================================================
- // PP Basic Starter.h ©1994-1996 Metrowerks Inc. All rights reserved.
- // ===========================================================================
-
- #pragma once
-
- #include <LApplication.h>
- #include "VideoSession.h"
- #include "OffscreenWorld.h"
- #include "OffscreenGroup.h"
- #include "AsyncBuffer.h"
-
-
- class CPPStarterApp : public LApplication {
- public:
- CPPStarterApp();
- virtual ~CPPStarterApp();
- virtual Boolean ObeyCommand(CommandT inCommand, void* ioParam);
- virtual void FindCommandStatus(CommandT inCommand,
- Boolean &outEnabled, Boolean &outUsesMark,
- Char16 &outMark, Str255 outName);
- virtual void ProcessNextEvent();
-
- LWindow *theWindowP;
- LView *theViewP;
- VideoSession *theSessionP;
- Rect theOffscreenRect;
- OffscreenWorld *theImage0P;
- OffscreenWorld *theImage1P;
- OffscreenWorld *theImage2P;
- OffscreenGroup *theImageGroupP;
- AsyncBuffer *theBufferP;
- };
-